home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_64 / getopt.c < prev    next >
Text File  |  1995-01-01  |  4KB  |  135 lines

  1. /*
  2.     Copyright (c) 1986,1991 by Borland International Inc.
  3.     All Rights Reserved.
  4. */
  5.  
  6. #include <errno.h>
  7. #include <string.h>
  8. #include <dos.h>
  9. #include <stdio.h>
  10.  
  11. int    optind    = 1;    /* index of which argument is next    */
  12. char   *optarg;        /* pointer to argument of current option */
  13. int    opterr    = 1;    /* allow error message    */
  14.  
  15. static    char   *letP = NULL;    /* remember next option char's location */
  16. static    char    SW = '-';         /* DOS switch character, either '-' or '/' */
  17.  
  18. /*
  19.   Parse the command line options, System V style.
  20.  
  21.   Standard option syntax is:
  22.  
  23.     option ::= SW [optLetter]* [argLetter space* argument]
  24.  
  25.   where
  26.     - SW is either '/' or '-', according to the current setting
  27.       of the MSDOS switchar (int 21h function 37h).
  28.     - there is no space before any optLetter or argLetter.
  29.     - opt/arg letters are alphabetic, not punctuation characters.
  30.     - optLetters, if present, must be matched in optionS.
  31.     - argLetters, if present, are found in optionS followed by ':'.
  32.     - argument is any white-space delimited string.  Note that it
  33.       can include the SW character.
  34.     - upper and lower case letters are distinct.
  35.  
  36.   There may be multiple option clusters on a command line, each
  37.   beginning with a SW, but all must appear before any non-option
  38.   arguments (arguments not introduced by SW).  Opt/arg letters may
  39.   be repeated: it is up to the caller to decide if that is an error.
  40.  
  41.   The character SW appearing alone as the last argument is an error.
  42.   The lead-in sequence SWSW ("--" or "//") causes itself and all the
  43.   rest of the line to be ignored (allowing non-options which begin
  44.   with the switch char).
  45.  
  46.   The string *optionS allows valid opt/arg letters to be recognized.
  47.   argLetters are followed with ':'.  Getopt () returns the value of
  48.   the option character found, or EOF if no more options are in the
  49.   command line.     If option is an argLetter then the global optarg is
  50.   set to point to the argument string (having skipped any white-space).
  51.  
  52.   The global optind is initially 1 and is always left as the index
  53.   of the next argument of argv[] which getopt has not taken.  Note
  54.   that if "--" or "//" are used then optind is stepped to the next
  55.   argument before getopt() returns EOF.
  56.  
  57.   If an error occurs, that is an SW char precedes an unknown letter,
  58.   then getopt() will return a '?' character and normally prints an
  59.   error message via perror().  If the global variable opterr is set
  60.   to false (zero) before calling getopt() then the error message is
  61.   not printed.
  62.  
  63.   For example, if the MSDOS switch char is '/' (the MSDOS norm) and
  64.  
  65.     *optionS == "A:F:PuU:wXZ:"
  66.  
  67.   then 'P', 'u', 'w', and 'X' are option letters and 'F', 'U', 'Z'
  68.   are followed by arguments.  A valid command line may be:
  69.  
  70.     aCommand  /uPFPi /X /A L someFile
  71.  
  72.   where:
  73.     - 'u' and 'P' will be returned as isolated option letters.
  74.     - 'F' will return with "Pi" as its argument string.
  75.     - 'X' is an isolated option.
  76.     - 'A' will return with "L" as its argument.
  77.     - "someFile" is not an option, and terminates getOpt.  The
  78.       caller may collect remaining arguments using argv pointers.
  79. */
  80.  
  81. int    getopt(int argc, char *argv[], char *optionS)
  82. {
  83.     unsigned char ch;
  84.     char *optP;
  85.  
  86.     if (SW == 0) {
  87.         /* get SW using dos call 0x37 */
  88.         _AX = 0x3700;
  89.         geninterrupt(0x21);
  90.         SW = _DL;
  91.     }
  92.  
  93.     if (argc > optind) {
  94.         if (letP == NULL) {
  95.             if ((letP = argv[optind]) == NULL || 
  96.                 *(letP++) != SW)  goto gopEOF;
  97.             if (*letP == SW) {
  98.                 optind++;  goto gopEOF;
  99.             }
  100.         }
  101.         if (0 == (ch = *(letP++))) {
  102.             optind++;  goto gopEOF;
  103.         }
  104.         if (':' == ch  ||  (optP = strchr(optionS, ch)) == NULL)  
  105.             goto gopError;
  106.         if (':' == *(++optP)) {
  107.             optind++;
  108.             if (0 == *letP) {
  109.                 if (argc <= optind)  goto  gopError;
  110.                 letP = argv[optind++];
  111.             }
  112.             optarg = letP;
  113.             letP = NULL;
  114.         } else {
  115.             if (0 == *letP) {
  116.                 optind++;
  117.                 letP = NULL;
  118.             }
  119.             optarg = NULL;
  120.         }
  121.         return ch;
  122.     }
  123. gopEOF:
  124.     optarg = letP = NULL;  
  125.     return EOF;
  126.  
  127. gopError:
  128.     optarg = NULL;
  129.     errno  = EINVAL;
  130.     if (opterr)
  131.         perror ("get command line option");
  132.     return ('?');
  133. }
  134. 
  135.